RingData
Members
The data about the rings of a planet, if it has any.
RingStart
It is of the type number
.
It ranges between 6000 and 12000. It increments by 1.
RingsAmount
The total amount of individual asteroids within the rings.
It is of the type number
.
It ranges between 500 and 1250. It increments by 1.
RingsEnd
It is of the type number
.
It ranges between 6800 and 15000. It increments by 1.
RingsType
The physical material the majority of the rings are made of.
It can be any of the following strings: Ice
, Stone
.
Luau Type
This is the luau type for RingData
. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
type RingData = {
RingsAmount: number,
RingsEnd: number,
RingsType: "Ice" | "Stone",
RingStart: number,
}